/*修正IE 8/9 中未定义的块级元素。*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}


/*修正在 IE 8/9 中未定义的 'inline-block' 元素。*/

audio,
canvas,
video {
	display: inline-block;
}


/** * 阻止现在浏览器显示未定义 control 播放控件的 'audio' 声音元素。 * 删除 IOS 5 设备中显示的多余的高度。 */

audio:not([controls]) {
	display: none;
	height: 0;
}


/** * 处理 IE 8/9 中不存在的样式。 */

[hidden] {
	display: none;
}


/* Base  基本设置 */


/** * 1. 设置默认字体类型为 sans-serif. * 2. 当用户放大或缩小页面时不改变字体大小。 */

html {
	font-family: sans-serif;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}


/*删除默认边距。*/

body {
	margin: 0;
}


/*链接 */


/* 处理 Chrome 与其它浏览器中关于 'outline' 的不一致s性。*/

a {
	color: #000;
}

a:focus {
	outline: none;
}


/*为所有浏览器改善当激活或悬停在元素上时元素内容的可读性。*/

a:active,
a:hover{
	outline: 0;
	color: #000;
}


/* 排版 */


/** * 处理多变的 'h1' 字体大小及其在 Firefox 4+, Safari 5, 及 Chrome时浏览器中的  * 'section' 与　'article' 元素中的边距。 */

h1 {
	font-size: 2em;
}


/*处理在 IE 8/9, Safari 5, 及 Chrome 没有的样式。 */

abbr[title] {
	border-bottom: 1px dotted;
}


/*处理 Firefox 4+, Safari 5, 及 Chrome 中默认的 'bolder' 样式为　'bold'.*/

b,
strong {
	font-weight: bold;
}


/*处理在 Safari 5 和 Chrome 没有的样式。*/

dfn {
	font-style: italic;
}


/*处理　Firefox　与其它浏览器的差异。*/

hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}


/*处理在 IE 8/9 中没有的样式。*/

mark {
	background: #ff0;
	color: #000;
}


/* 修正确 Safari 5 和 Chrome 中古怪的默认字体。*/

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 1em;
}


/* 为所有浏览器改善预格式化文本的可读性。*/

pre {
	white-space: pre-wrap;
}


/*设置一致的引用格式。*/

q {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

img{max-width: 100%;}

/** * 处理所有浏览器中字体大小的不一致性[译者注：原文直译为：处理所有 * 浏览器中的不一致和多变的字体大小]。 */

small {
	font-size: 80%;
}


/** * 阻止所有浏览器中 'sub' 和 'sup' 元素影响 'line-height'.  * [译者注：就是不让上标与下标影响行高。] */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}


/* ==========================================================================   Embedded content   嵌入的内容   ========================================================================== */


/*删除 IE 8/9 中当内容位于 'a' 中出现的边框。*/

img {
	border: 0;
}


/** * 修正 IE 9 中显示古怪的溢出内容。 */

svg:not(:root) {
	overflow: hidden;
}


/* ==========================================================================   Figures   Figure 图像/图表/代码等   ========================================================================== */


/** * 处理在 IE 8/9 和 Safari 5 没有的边距。 */

figure {
	margin: 0;
}


/* Forms */


/** * 定义一致的边框、外边距及内边距。 */

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em .75em;
}


/** *    [译者注：说是修正颜色嘛，可下面没有关于颜色的呀，这也行？求大神解释！] * 2. 去掉内边距，避免当用户清空表单组时认为出错了。 */

legend {
	border: 0;
	padding: 0;
}


/** * 1. 修正所有浏览器中未被继承的字体类型。 * 2. 修正所有浏览器中未被继承的字体大小。 * 3. 处理 Firefox 4+, Safari 5, 及 Chrome 中默认设置不同的外边距。 */

button,
input,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 2 */
	margin: 0;
	/* 3 */
}


/*处理 Firefox 4+ 中的客户端样式表里使用 '!important' 设置的 'line-height'.*/

button,
input {
	line-height: normal;
}


/** * 处理 'button' 和 'select' 的 'text-transform' 继承的不一致性。 * 所有其它表单控件元素不继承 'text-transform' 的值。 * 修正 Chrome, Safari 5+, 及 IE 8+ 中 'button' 的继承样式。 * 修正 Firefox 4+ 和 Opera 中 'select' 的继承样式。 */

button,
select {
	text-transform: none;
}


/** * 1. 避免 Android 4.0.* 中 WebKit 的一个bug, 防止 'audio' 与 'video' 的播放控件失效。 * 2. 修正 iOS 中不可点击的 'input' 样式。 * 3. 改善图片类型的 'input' 等光标样式的可用性与一致性。 */

button,
html input[type="button"],

	/* 1 */

input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
	cursor: pointer;
	/* 3 */
}


/*重置不可用元素的默认光标样式。*/

button[disabled],
html input[disabled] {
	cursor: default;
}


/** * 1. 处理 IE 8/9 中设置为 'content-box' 的盒子模型。 * 2. 删除 IE 8/9 中多余的内边距。 */

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}


/** * 1. 处理 Safari 5 和 Chrome 中默认设置为 'appearance' 的 'searchfield'. * 2. 处理 Safari 5 和 Chrome 中默认设置为 'box-sizing' 的 'border-box' *    (包括不会过时的 '-moz'). */

input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	/* 2 */
	box-sizing: content-box;
}


/*删除 Safari 5 和 OS X 上的 Chrome 中的输入框上的内边距和搜索取消按钮。*/

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}


/* 删除 Firefox 4+ button 与 input 上的内边距。*/

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}


/** * 1. 删除 IE8/9 中默认的垂直滚动条。 * 2. 改善所有浏览器中的可读性并使文本垂直对齐。 */

textarea {
	overflow: auto;
	vertical-align: top;
}


/*Tables*/


/*删除表格里单元格间的间距。*/

table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*自行定义的css*/

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1;
	/*让元素高度等于字体高度*/
}

html,
body {
	font-family: MicrosoftYaHei;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
}

a,
span {
	display: inline-block;
}


/*正确瞄点的顺序*/

a:link {
	color: #000;
}


/*未访问*/


/*a:visited{color: orange;}a:focus{color: lightgray;}a:hover{color: lightblue;}a:active{color: lightgreen;}*/


/* UI元素伪类 主要针对form元素*/


/*:enabled    可用状态:disabled   不可用状态:checked    选中状态    */

input,
textarea,
button {
	border: 0;
	outline: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: inherit;
}

ul,
ol,
li {
	list-style: none;
}

button {
	cursor: pointer;
	background: none;
}


/*栅格*/

.xg-12 {
	width: 100%
}

.xg-11 {
	width: 91.66666667%
}

.xg-10 {
	width: 83.33333333%
}

.xg-9 {
	width: 75%
}

.xg-8 {
	width: 66.66666667%
}

.xg-7 {
	width: 58.33333333%
}

.xg-6 {
	width: 50%
}

.xg-5 {
	width: 41.66666667%
}

.xg-4 {
	width: 33.33333333%
}

.xg-3 {
	width: 25%
}

.xg-2 {
	width: 16.66666667%
}

.xg-1 {
	width: 8.33333333%
}

.xw-10 {
	width: 100%;
}

.xw-9 {
	width: 90%;
}

.xw-8 {
	width: 80%;
}

.xw-7 {
	width: 70%;
}

.xw-6 {
	width: 60%;
}

.xw-5 {
	width: 50%;
}

.xw-4 {
	width: 40%;
}

.xw-3 {
	width: 30%;
}

.xw-2 {
	width: 20%;
}

.xw-1 {
	width: 10%;
}

.xg-1,
.xg-2,
.xg-3,
.xg-4,
.xg-5,
.xg-6,
.xg-7,
.xg-8,
.xg-9,
.xg-10,
.xg-11,
.xg-12 {
	float: left;
}

.xw-1,
.xw-2,
.xw-3,
.xw-4,
.xw-5,
.xw-6,
.xw-7,
.xw-8,
.xw-9,
.xw-10 {
	float: left;
}

.xw-15>* {
	float: left;
	width: 15%
}

.xw-15>*:not(:nth-child(6n)) {
	margin-right: 2%;
}

.xw-23>* {
	float: left;
	width: 23.5%;
}

.xw-23>*:not(:nth-child(4n)) {
	margin-right: 2%;
}

.xw-24>* {
	float: left;
	width: 24.25%;
}

.xw-24>*:not(:nth-child(4n)) {
	margin-right: 1%;
}

.xw-32>* {
	float: left;
	width: 32%;
}

.xw-32>*:not(:nth-child(3n)) {
	margin-right: 2%;
}

.xw-48>* {
	float: left;
	width: 49%;
}

.xw-48>*:not(:nth-child(2n)) {
	margin-right: 4%;
}

.xw-49>* {
	float: left;
	width: 49%;
}

.xw-49>*:not(:nth-child(2n)) {
	margin-right: 2%;
}

.xw-495>* {
	float: left;
	width: 49.5%;
}

.xw-495>*:not(:nth-child(2n)) {
	margin-right: 1%;
}

.xw-15:after,
.xw-23::after,
.xw-24::after,
.xw-32::after,
.xw-48::after,
.xw-49::after,
.xw-495::after {
	content: "";
	display: block;
	clear: both;
}

.xw-16,
.xw-23,
.xw-24,
.xw-32,
.xw-48,
.xw-49,
.xw-495 {
	zoom: 1;
}


/*第几个右外边距为0*/

.nthMar-2>*:nth-child(2n) {
	margin-right: 0;
}

.nthMar-3>*:nth-child(3n) {
	margin-right: 0;
}

.nthMar-4>*:nth-child(4n) {
	margin-right: 0;
}

.nthMar-last>*:last-child {
	margin-right: 0;
}


/*穿透*/

.pierce {
	position: relative;
}

.pierce::before {
	content: "";
	position: absolute;
	left: 0;
	top: 45%;
	width: 100%;
	border-bottom: 1px solid #c4c4c4;
	z-index: 1;
}

.pierce>span {
	position: relative;
	padding-right: 7px;
	background: #fafafa;
	z-index: 2;
}


/*浮动与清除浮动*/

.fl {
	float: left;
}

.fr {
	float: right;
}


/*在所有浏览器中都兼容的清浮动方案如下：*/

.clear:after {
	content: "";
	display: block;
	clear: both;
}

.clear {
	zoom: 1;
}


/*　除了清除浮动外，常常也需要解决外边距margin重叠的问题。这时，清除浮动和解决margin重叠的代码如下*/


/*	.clear:before,.clear:after{content:"";display:table;}	.clear:after{clear:both;}	.clear{zoom:1}  */


/*flexbox*/

.fdef {
	display: flex;
}

.fc {
	display: flex;
	justify-content: center;
}

.fcw {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.fdefc {
	display: flex;
	align-items: center;
}

.fcc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fccw {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.fs {
	display: flex;
	justify-content: space-between;
}

.fsw {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.fsc {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fscw {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.ffc {
	display: flex;
	align-content: flex-end;
	align-items: center;
}

.ffcw {
	display: flex;
	align-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}


/*定义在触摸图片时的效果*/

.hover-img {
	overflow: hidden;
}

.hover-img img {
	-webkit-transition: transform .5s;
	-moz-transition: transform .5s;
	-ms-transition: transform .5s;
	-o-transition: transform .5s;
	transition: transform .5s;
}

.hover-img:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}


/*css3的过度效果*/

.linear {
	-webkit-transition: .5s !important;
	-ms-transition: .5s !important;
	-moz-transition: .5s !important;
	-o-transition: .5s !important;
	transition: .5s !important;
}

.linear-transform {
	-webkit-transition: transform .5s !important;
	-ms-transition: transform .5s !important;
	-moz-transition: transform .5s !important;
	-o-transition: transform .5s !important;
	transition: transform .5s !important;
}

.ease {
	-webkit-transition: .5s ease !important;
	-ms-transition: .5s ease !important;
	-moz-transition: .5s ease !important;
	-o-transition: .5s ease !important;
	transition: .5s ease !important;
}

.ease-transform {
	-webkit-transition: transform .5s ease !important;
	-ms-transition: transform .5s ease !important;
	-moz-transition: transform .5s ease !important;
	-o-transition: transform .5s ease !important;
	transition: transform .5s ease !important;
}

.ease-in {
	-webkit-transition: .5s ease-in !important;
	-ms-transition: .5s ease-in !important;
	-moz-transition: .5s ease-in !important;
	-o-transition: .5s ease-in !important;
	transition: .5s ease-in !important;
}

.ease-in-transform {
	-webkit-transition: transform .5s ease-in !important;
	-ms-transition: transform .5s ease-in !important;
	-moz-transition: transform .5s ease-in !important;
	-o-transition: transform .5s ease-in !important;
	transition: transform .5s ease-in !important;
}

.ease-out {
	-webkit-transition: .5s ease-out !important;
	-ms-transition: .5s ease-out !important;
	-moz-transition: .5s ease-out !important;
	-o-transition: .5s ease-out !important;
	transition: .5s ease-out !important;
}

.ease-out-transform {
	-webkit-transition: transform .5s ease-out !important;
	-ms-transition: transform .5s ease-out !important;
	-moz-transition: transform .5s ease-out !important;
	-o-transition: transform .5s ease-out !important;
	transition: transform .5s ease-out !important;
}

.cubic-bezier {
	-webkit-transition: .5s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
	-ms-transition: .5s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
	-moz-transition: .5s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
	-o-transition: .5s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
	transition: .5s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
}

.cubic-bezier-transform {
	-webkit-transition: transform .3s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
	-ms-transition: transform .5s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
	-moz-transition: transform .5s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
	-o-transition: transform .5s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
	transition: transform .5s cubic-bezier(0.815, 1.650, .400, 0.680) !important;
}


/*css transform effect*/

.transform-left {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.transform-top {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.transform-center {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


/*模态框  几种形式*/

.modal {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 1050;
	opacity: 0;
	-webkit-transition: all .5s ease-out 0s;
	-moz-transition: all .5s ease-out 0s;
	-ms-transition: all .5s ease-out 0s;
	-o-transition: all .5s ease-out 0s;
	transition: all .5s ease-out 0s;
}

.dialog,
.dialog-center {
	width: 500px;
	min-height: 150px;
	position: relative;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
	border-radius: 10px;
	background-color: #fff;
	margin: 30px auto;
	-webkit-transition: all .5s ease-out 0s;
	-moz-transition: all .5s ease-out 0s;
	-ms-transition: all .5s ease-out 0s;
	-o-transition: all .5s ease-out 0s;
	transition: all .5s ease-out 0s;
}

.dialog {
	-webkit-transform: translate(0, -40%);
	-moz-transform: translate(0, -40%);
	-ms-transform: translate(0, -40%);
	-o-transform: translate(0, -40%);
	transform: translate(0, -40%);
}

.dialog-center {
	top: 50%;
	margin: 0 auto;
	-webkit-transform: translate(0, -80%);
	-moz-transform: translate(0, -80%);
	-ms-transform: translate(0, -80%);
	-o-transform: translate(0, -80%);
	transform: translate(0, -80%);
}

.dialog-header {
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
	padding: 15px;
}

.dialog-header h3,
.dialog-header span {
	display: inline-block;
}

.dialog-header i {
	float: right;
	overflow: hidden;
	cursor: pointer;
	font-size: 18px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: transform .5s;
	-moz-transition: transform .5s;
	-ms-transition: transform .5s;
	-o-transition: transform .5s;
	transition: transform .5s;
}

.dialog-header i:hover {
	-webkit-transform: rotate(225deg);
	-moz-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	-o-transform: rotate(225deg);
	transform: rotate(225deg);
}

.dialog-header i:before,
.dialog-header i:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: #000000;
	border-radius: 2px;
}

.dialog-header i:before {
	width: 12px;
	height: 2px;
	margin: -1px 0 0 -6px;
}

.dialog-header i:after {
	height: 12px;
	width: 2px;
	margin: -6px 0 0 -1px;
}

.dialog-content {
	padding: 15px;
}

.modal.in {
	opacity: 1;
}

.in .dialog {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}

.in .dialog-center {
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}


/*白色覆盖层*/

.cover-layer {
	position: relative;
}

.cover-layer::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(256, 256, 256, .7);
}

.scrollX {
	overflow-x: auto;
	overflow-y: hidden;
}

.scrollY {
	overflow-x: hidden;
	overflow-y: auto;
}


/*overflow*/

.text-hidden {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-lowercase {
	text-transform: lowercase;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-capitalize {
	text-transform: capitalize;
}


/* display change */

.block {
	display: block;
}

.inblock {
	display: inline-block;
}

.table {
	display: table;
}


/* child be full of parent */

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Banner图片居中样式 - 通用样式 */
.banner-center {
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
}

.banner-center .img-responsive {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.full {
	width: 100%;
	height: 100%;
}


/*不兼容IE9下  居中的几种方式*/

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.posCen-center {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.posCen-top {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.posCen-left {
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}


/*水平居中的几种方式*/

.block-center {
	display: block;
	margin: 0 auto;
}

.table-center {
	display: table;
	margin: 0 auto;
}

.absolute-50 {
	position: absolute;
	left: 50%;
}

.relative-50 {
	position: relative;
	left: 50%;
}


/*垂直居中的几种方式*/

.table-middle {
	display: table-cell;
	vertical-align: middle;
}

.inblock-middle {
	display: inline-block;
	vertical-align: middle;
}


/*full cover*/

.absFull {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.fixFull {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.set-ctn {
	display: inline-block;
	max-width: 80px;
	max-height: 80px;
	overflow: hidden;
}

.set-ctn>* {
	position: relative;
	top: 0;
	max-width: 100%;
	max-height: 100%;
	line-height: 30px;
	-webkit-transition: top .5s;
	-ms-transition: top .5s;
	-moz-transition: top .5s;
	-o-transition: top .5s;
	transition: top .5s;
}

.set-ctn>*>img {
	max-width: 100%;
	max-height: 100%;
}

@media only screen and (min-width: 767px) {
	.set-ctn:hover>* {
		top: -80px;
	}
}

.set-ctn.set-left,
.set-ctn.set-right {
	max-width: 30px;
	max-height: 30px;
}

.set-ctn.set-left>*,
.set-ctn.set-right>* {
	width: 30px;
	height: 30px;
}


/*转化成表格   width无效*/

.table {
	display: table;
	width: 100%;
	height: 100%;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}


/**/

.tier-item-title {
	position: relative;
	width: 100%;
	height: 48px;
	line-height: 48px;
	background: lightblue;
}


/*一级二级*/

i.plus,
i.minus {
	display: block;
	position: absolute;
	width: 2.875rem;
	height: 3rem;
	right: 0;
	top: 0;
	z-index: 4;
	cursor: pointer;
}

i.minus::before,
i.plus::before,
i.plus::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	border-radius: 2px;
	background: #000;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s;
}

i.plus::before,
i.minus::before {
	width: 12px;
	height: 2px;
	margin: -1px 0 0 -6px;
}

i.plus::after {
	height: 12px;
	width: 2px;
	margin: -6px 0 0 -1px;
}

i.plus-rotate::before,
i.plus-rotate::after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media only screen and (min-width: 767px) {
	.plus-rotate:hover.plus-rotate::before,
	.plus-rotate:hover.plus-rotate::after {
		-webkit-transform: rotate(225deg);
		-moz-transform: rotate(225deg);
		-ms-transform: rotate(225deg);
		transform: rotate(225deg);
	}
}

.tier-item {
	position: relative;
}

.tier-item-down {
	display: none;
	background: rgba(0, 0, 0, .03);
}

.tier-item .plus {
	-webkit-transition: transform .5s;
	-moz-transition: transform .5s;
	-ms-transition: transform .5s;
	transition: transform .5s;
}

.tier-item .plus-default {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}

.tier-item.active .plus-default {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}

.tier-item.active i.plus::before,
.tier-item.active i.minus::before,
.tier-item.active i.plus::after {
	background: #fff;
}

@media only screen and (min-width: 767px) {
	.tier-item:hover i.plus::before,
	.tier-item:hover i.minus::before,
	.tier-item:hover i.plus::after {
		background: #fff;
	}
}

i.plus-change::before,
i.plus-change::after {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
}

.tier-item.active .plus-change::after {
	height: 0;
}


/*arrow*/

.arrow {
	display: inline-block;
	position: relative;
	width: 13px;
	height: 13px;
}

.arrow-inner {
	display: block;
	top: 50%;
	margin-top: -1px;
}

.arrow-inner::before,
.arrow-inner::after {
	content: "";
	display: block;
}

.arrow-inner,
.arrow-inner::before,
.arrow-inner::after {
	width: 13px;
	height: 2px;
	background-color: #000;
	border-radius: 2px;
	position: absolute;
	transition-property: transform, -webkit-transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.arrow-inner::before {
	top: -3px;
	-webkit-transform: translate3d(-3px, 0, 0) rotate(-45deg) scale(.7, 1);
	transform: translate3d(-3px, 0, 0) rotate(-45deg) scale(.7, 1);
}

.arrow-inner::after {
	bottom: -3px;
	-webkit-transform: translate3d(-3px, 0, 0) rotate(45deg) scale(.7, 1);
	transform: translate3d(-3px, 0, 0) rotate(45deg) scale(.7, 1);
}

.arrow-right .arrow-inner::before {
	-webkit-transform: translate3d(3px, 0, 0) rotate(45deg) scale(.7, 1);
	transform: translate3d(3px, 0, 0) rotate(45deg) scale(.7, 1);
}

.arrow-right .arrow-inner::after {
	-webkit-transform: translate3d(3px, 0, 0) rotate(-45deg) scale(.7, 1);
	transform: translate3d(3px, 0, 0) rotate(-45deg) scale(.7, 1);
}


/*下拉及二级菜单*/

.seldown {
	position: relative;
}

.seldown i {
	position: absolute;
	right: 20px;
	top: 16px;
	-webkit-transition: transform .5s;
	-moz-transition: transform .5s;
	-ms-transition: transform .5s;
	-o-transition: transform .5s;
	transition: transform .5s;
}

.select-list {
	display: none;
	position: absolute;
	top: 100%;
	width: 100%;
	margin-top: 5px;
	background-color: #ffffff;
	border: solid 1px #cecece;
	border-radius: 3px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.03), inset 0px 1px 5px 0px rgba(0, 0, 0, 0.06);
	max-height: 122px;
	overflow-y: auto;
	z-index: 2;
}

.select-list>li {
	padding: 0 10px;
	cursor: pointer;
	line-height: 1.875rem;
	text-align: left;
	font-size: .875rem;
}

.select-list>li:hover {
	background: #000;
	color: #fff;
}

.seldown.active i {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}


/*解决swiper pagination and navigation border problems*/

.swiper-button-prev:focus,
.swiper-button-next:focus {
	outline: none;
}

.swiper-pagination-bullet:focus {
	outline: none;
}


/*media*/

@media only screen and (max-width: 767px) {
	.xs-6>* {
		width: 49% !important;
		margin-bottom: 2%;
		margin-right: 2% !important;
	}
	.xs-6>*:nth-child(2n) {
		margin-right: 0 !important;
	}
	.xs-12>* {
		width: 100% !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
		margin-bottom: 2%;
	}
	.dialog,
	.dialog-center {
		width: 86%;
	}
}


/*页面头部和尾部的共用文件*/


/*定义字体大小 主要看content的大小*/


/*@media only screen and (max-width: 1200px) {	:root {		font-size: calc(12px + (18 - 16) * (100vw - 200px)/(880 - 400));	}}@media only screen and (max-width: 1400px) {	:root {		font-size: calc(12px + (18 - 16) * (100vw - 100px)/(880 - 250));	} * */

@font-face {
	font-family: NotoSansHans;
	src: url(../fonts/NotoSansHans-R.eot);
	src: url(../fonts/NotoSansHans-R.eot?#iefix) format("embedded-opentype"), url(../fonts/NotoSansHans-R.woff) format("woff"), url(../fonts/NotoSansHans-R.ttf) format("truetype"), url(../fonts/NotoSansHans-R.svg#jq) format("svg");
}

* {
	font-family: NotoSansHans, "微软雅黑";
	font-weight: normal;
	font-stretch: normal;
	-webkit-font-smoothing: antialiased;
	-mox-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 1400px) {
	:root {
		font-size: calc(12px + (18 - 16) * (100vw - 100px)/(880 - 240));
	}
}

.content {
	margin: 0 auto;
}

@media (min-width:1600px) {
	.content {
		width: 1600px;
	}
}

@media (max-width:1600px) {
	.content {
		width: 100%;
		padding: 0 20px
	}
}

@media (max-width: 1400px) {
	.content {
		padding: 0 15px
	}
}

body {
	background: #fff;
}

.header {
	position: fixed;
	z-index: 199;
	top: 0;
	left: 0;
	height: auto;
	width: 100%;
}

.header:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 0;
	box-shadow: 0px 3px 5px 0px rgba(212, 212, 212, 0.35);
	background: #fff;
	opacity: 0;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	z-index: -1;
}

.header.active:before {
	bottom: 0;
	opacity: 1;
	height: 100%;
}

.header>div {
	position: relative;
	width: 1600px;
	height: 5.875rem;
}

@media only screen and (max-width: 1600px) {
	.header>div {
		width: 100%;
	}
}

.header .logo {
	width: 16.5%;
	min-width: 120px;
	margin-top: 1.25rem;
	/*height: 3.875rem;	
	background: url(../images/logo.png) no-repeat left center;
	background-size: 100% auto;*/
}
.header .logo img{
	max-width: 100%;
	max-height: 100%;
}
.header .logo img:last-child {
	display: none;
}

.header.active .logo img:first-child {
	display: none;
}

.header.active .logo img:last-child {
	display: block;
}

.header .nav-links {
	margin-right: 4.25rem;
}

.nav-links>li {
	position: relative;
	float: left;
	min-width: 4.75rem;
	height: 5.875rem;
	padding: 3.125rem 1rem 0;
	text-align: center;
	border-top: 4px solid transparent;
}

.nav-links>li.active {
	background-color: rgba(6, 78, 40, .5);
	border-top-color: #064e28;
}

.header.active .nav-links>li.active {
	background-color: #f7fbf9;
	border-top-color: #096c38;
}

.nav-links>li>ul{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 9.375rem;
	padding: 0 .75rem;
	background: #096c38;
}
.nav-links>li li{
	padding: .75rem 0;
	text-align: center;
	border-bottom: 1px solid #fff;
}
.nav-links>li li:last-child{border-bottom: 0;}
.header .nav-links>li li a{color: #fff;}

.header>div * {
	font-size: .875rem;
	color: #fff;
}

.header.active>div * {
	color: #000;
}

.hd-operate {
	position: absolute;
	right: 0;
	top: 4px;
	margin-right: 1.875rem;
}

.header .hd-operate * {
	font-size: 12px;
}

/* 语言切换样式 */
.hd-operate {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.lang-switch {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.lang-item {
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 3px;
	transition: all 0.3s ease;
	font-weight: 400;
}

.lang-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #096c38;
}

.lang-item.active {
	color: #096c38;
	font-weight: bold;
}

.header.active .lang-item:hover {
	background-color: rgba(9, 108, 56, 0.1);
	color: #096c38;
}

.lang-divider {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
}

.header.active .lang-divider {
	color: rgba(0, 0, 0, 0.6);
}

/* 用户认证区域样式 */
.user-auth {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.auth-link {
	padding: 4px 8px;
	border-radius: 3px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.auth-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #096c38;
}

.header.active .auth-link:hover {
	background-color: rgba(9, 108, 56, 0.1);
	color: #096c38;
}

.auth-divider {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
}

.header.active .auth-divider {
	color: rgba(0, 0, 0, 0.6);
}

.gh {
	display: none;
}

.header>div>p {
	margin-top: 3.375rem;
	margin-right: 1.875rem;
	padding-left: 1.25rem;
	background: url(../images/htel.png) no-repeat;
}

.header.active>div>p {
	background-image: url(../images/htel-active.png)
}


/*footer*/

.footer-box {
	height: 26.25rem;
	padding-top: 6.25rem;
	background-color: #f3f3f3;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}

@media only screen and (min-width: 1400px) {
	.footer.content {
		width: 1400px;
	}
}

@media only screen and (max-width: 1400px) {
	.footer-box {
		height: 22rem;
	}
}

.ftitle {
	font-size: 16px;
	color: #333;
}

.ftitle>span {
	float: left;
	width: 30px;
	height: 2px;
	margin-top: 7px;
	margin-right: 10px;
	background-color: #333333;
}

.footer>div>div {
	margin-top: 1.75rem;
}

.footer>div>div * {
	font-size: 14px;
	line-height: 34px;
	color: #202020;
}

.flinks>div,
.fcontact>div {
	padding-left: 2.375rem;
}

.flinks>div {
	width: auto;
	min-width: 180px;
	max-width: 350px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.flinks>div>a {
	position: relative;
	font-size: 14px;
	line-height: 1.8;
	color: #202020;
	text-decoration: none;
	transition: color 0.3s ease;
}

.flinks>div>a:hover {
	color: #096c38;
}

.flinks>div>a:nth-child(odd)::after {
	display: none;
}

.fcontact>div {
	width: auto;
	min-width: 15.625rem;
	max-width: 22rem;
}

.fcontact>div>p {
	padding-left: 1.75rem;
}

.fcontact>div>p:first-child {
	background: url(../images/ftel.png) no-repeat left 8px;
}

.fcontact>div>p:last-child {
	background: url(../images/fsite.png) no-repeat left 8px;
}

.fcontact.fcode {
	margin-right: 10%;
}

.fcontact.fcode>div {
	width: auto;
	padding-left: 0;
}

.fshop {
	width: 21.875rem;
}

.fshop>div {
	align-items: flex-end;
}

.footer .fshop>div {
	margin-top: 0;
}

.fshop>form {
	position: relative;
	margin-top: 10px;
}

.fshop>form>* {
	height: 40px;
	padding: 0 10px;
	line-height: 40px;
}

.fshop>form>input {
	width: 100%;
	padding-right: 40px;
	border: solid 1px #666;
	font-size: 14px;
	color: #000;
}

.fshop>form>input::-webkit-input-placeholder,
.fshop>form>input::-moz-placeholder,
.fshop>form>input::-ms-input-placeholder {
	color: #000;
}

.fshop>form>button {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	background: url(../images/fsearch.png) no-repeat center center;
}

.copyright {
	line-height: 3.125rem;
	text-align: center;
	font-size: .875rem;
	background-color: #404141;
	color: #b8b8b8;
}

.copyright a {
	color: #b8b8b8;
}

.m-footer {
	display: none;
}

/* 英文版底部优化 */
[lang="en"] .flinks>div,
body.lang-en .flinks>div {
	width: auto;
	min-width: 280px;
	max-width: 380px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
	gap: 12px 16px;
	align-items: start;
}

[lang="en"] .flinks>div>a,
body.lang-en .flinks>div>a {
	display: block;
	font-size: 13px;
	line-height: 1.8;
	color: #202020;
	text-decoration: none;
	padding: 2px 0;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

[lang="en"] .flinks>div>a:hover,
body.lang-en .flinks>div>a:hover {
	color: #096c38;
	border-bottom-color: #096c38;
}

[lang="en"] .fcontact>div,
body.lang-en .fcontact>div {
	width: auto;
	min-width: 18rem;
	max-width: 24rem;
}


/*common css*/

.baseBg {
	background-color: #fafafa;
}

.title {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.title>span {
	font-size: 5rem;
	line-height: 1;
	color: #096c38;
	margin-left: -1.2rem;
	margin-right: 4px;
	text-transform: uppercase;
}

.title>div>span {
	margin-bottom: 4px;
	font-size: 1.25rem;
	color: #096c38;
	text-transform: uppercase;
}

.title>div>p {
	font-size: 2.5rem;
}

.logoBg {
	background: url(../images/logo-bg.png) no-repeat center -1rem;
	background-size: 17.125rem 7.5rem;
}

.box-shadow {
	box-shadow: 0px 2px 14px 0px rgba(9, 108, 56, 0.35);
}

.page>li{
	float: left;
	width: 1.875rem;
	height: 1.875rem;
	margin-left: 0.625rem;
	line-height: 1.875rem;
	text-align: center;
	background-color: #ffffff;
	border-radius: 50%;
}

.page>li.active{
	color: #fff;
	background: url(../images/page-bg.png) no-repeat;
	background-size: 100% 100%;
}

.page>li:first-child,
.page>li:last-child {
	position: relative;
	line-height: 2rem;
}
.page>li:first-child::before,
.page>li:first-child::after,
.page>li:last-child::before,
.page>li:last-child::after {
	display: none;
	content: "";
	position: absolute;
	top: 50%;
	width: 2px;
	height: 2px;
	margin-top: -1px;
	background: #fff;
}

.page>li:first-child::before {
	right: 7px;
}

.page>li:first-child::after {
	right: 3px;
}

.page>li:last-child::before {
	left: 3px;
}

.page>li:last-child::after {
	left: 7px;
}

.page .arrow-inner,
.page .arrow-inner::before,
.page .arrow-inner::after {
	background: #767676;
}
.crumb{font-size: .875rem;color: #666;line-height: 1.125rem;}
.crumb>a,.crumb>span {
	margin: 0 10px;
	font-size: .875rem;
	color: #666;
}

.crumb>a:first-child {
	margin-left: 0;
}

.common-tab {
	height: 3.75rem;
	background-size: 100% 100%;
	text-align: center;
}

.common-tab>div>a {
	width: 10rem;
	padding: 1.5rem 0 1.25rem;
	color: #fff;
}

.common-tab>div>a:focus,
.common-tab>div>a:hover {
	border: none;
	outline: none;
}

.common-tab>div>a.active {
	background: #fff;
	color: #096c38;
}

.hgroup-title * {
	font-size: 1.625rem;
	line-height: 1.875rem;
}

.hgroup-title>h2 {
	text-transform: uppercase;
}

.hgroup-title>hr {
	width: 102px;
	height: 2px;
	background-color: #000;
}

.hgroup-title>p {
	font-size: 1rem;
	line-height: 2rem;
	color: #666;
}


/*news*/

.news-list {
	margin-top: 5.75rem;
}

.news-list>a {
	position: relative;
	width: 23.75%;
	margin-right: 1.6667%;
	margin-bottom: 4.375rem;
	border-bottom: 1px solid #a2a2a2;
}

.news-list>a:nth-child(4n) {
	margin-right: 0;
}
.news-list>a>p{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 17.5rem;
	background: #f2f2f2;
}
.news-list>a>p>img {
	max-width: 100%;
	max-height: 100%;
}

.news-list>a>div {
	margin: 1.5625rem 0 1.25rem;
}

.news-list>a h3 {
	width: 65%;
	font-size: 1rem;
}

.news-list>a span {
	font-size: .875rem;
	color: #666;
}

.news-list>a::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: green;
	-webkit-transition: width .5s;
	-moz-transition: width .5s;
	-ms-transition: width .5s;
	-o-transition: width .5s;
	transition: width .5s;
}

.crumb {
	margin: 12.5rem auto 8px;
}

.header-active .header:before {
	bottom: 0;
	opacity: 1;
	height: 100%;
}

.header-active .header>div * {
	color: #000;
}

.header-active .header>div>p {
	background-image: url(../images/htel-active.png);
}

.header-active .header .logo {
	background-image: url(../images/logo-active.png);
}

.header-active .nav-links>li.active {
	background-color: #f7fbf9;
	border-top-color: #096c38;
}

.common-mar {
	margin: 3.75rem auto 7.5rem;
}

.common-box {
	padding: 4.375rem 6.25%;
	border-radius: 18px;
}

.form-btn {
	top: inherit;
	bottom: -5.8rem;
	width: 18.75rem;
	height: 3.125rem;
	font-size: 1.125rem;
	background-color: #096c38;
	color: #fff;
	border-radius: 4px;
}

.form-btn>span {
	margin-right: 1.625rem;
}

@media only screen and (min-width: 767px) {
	.nav-links>li:hover {
		background-color: rgba(6, 78, 40, .5);
		border-top-color: #064e28;
	}
	.news-list>a:hover::after {
		width: 100%;
	}
	.nav-links>li:hover>ul{display: block;}
	.header.active .nav-links>li:hover {
		background-color: #f7fbf9;
		border-top-color: #096c38;
	}
	.header-active .nav-links>li:hover {
		background-color: #f7fbf9;
		border-top-color: #096c38;
	}
	.page>li:hover{
		color: #fff;
		background: url(../images/page-bg.png) no-repeat;
	}
	.page>li:hover>a{
		color: #fff;
	}

	.page>li:hover .arrow-inner,
	.page>li:hover .arrow-inner::before,
	.page>li:hover .arrow-inner::after {
		background: #fff;
	}
	.page>li:first-child:hover .arrow-left {
		margin-left: -5px;
	}
	.page>li:last-child:hover .arrow-right {
		margin-right: -6px;
	}
	.page>li:first-child:hover::before,
	.page>li:first-child:hover::after,
	.page>li:last-child:hover::before,
	.page>li:last-child:hover:hover::after {
		display: block;
	}
}

@media only screen and (max-width: 1600px) {
	.hamburger {
		display: block;
	}
	.header>div>p {
		margin-right: 10px;
	}
}

@media only screen and (max-width: 1100px) {
	.header .nav-links {
		margin-right: 1rem;
	}
}
@media only screen and (max-width: 1400px) {
	.common-box {padding: 3rem 4%;}
}

@media only screen and (max-width: 767px) {
	.header>div>p {
		display: none;
	}

	.hd-operate {
		position: absolute;
		top: 10px;
		right: 60px;
		flex-direction: column;
		gap: 5px;
		font-size: 11px;
	}

	.hd-operate * {
		font-size: 11px !important;
	}

	.lang-switch, .user-auth {
		gap: 3px;
	}
	.flinks,.fcode{
		display: none;
	}
	
	/* 移动端英文版QUICK ENTRY优化 */
	[lang="en"] .flinks>div,
	body.lang-en .flinks>div {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px 12px;
		max-width: none;
		width: 100%;
		text-align: left;
	}
	
	[lang="en"] .flinks>div>a,
	body.lang-en .flinks>div>a {
		font-size: 12px;
		padding: 4px 0;
	}
	.footer-box {
		height: auto;
		padding: 2rem 0;
	}
	.footer{display: block;}

	.fcontact,.fcontact>div,.fshop{width: 100%;}
	.fshop,.footer>div>div{margin-top: 1rem;}
	.fshop a{text-align: center;}
	.copyright{line-height: 2rem;}
	.header>div {
		height: 4.2rem;
	}
	.header .logo {
		height: 2.875rem;
		margin-top: 1rem
	}
	.header .nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		padding-bottom: 20px;
		background-color: rgba(0, 0, 0, .9);
	}
	.nav-links>li {
		width: 100%;
		padding-top: 0;
		height: 3rem;
		line-height: 3rem;
	}
	.nav-links>li>a {
		width: 100%;
	}
	.nav-links>li>a,
	.header.active>div * {
		color: #fff;
	}
	.crumb>a,
	.crumb>span {
		margin: 0 3px;
	}
	.gh {
		display: block;
		position: absolute;
		right: 0;
		top: 15px;
		height: 34px;
		width: 34px;
		margin-right: 20px;
		transition: all 0.5s cubic-bezier(.7, 0, 0.3, 1) 0s;
		-webkit-transition: all 0.5s cubic-bezier(.7, 0, 0.3, 1) 0s;
		-ms-transition: all 0.5s cubic-bezier(.7, 0, 0.3, 1) 0s;
		cursor: pointer;
	}
	.gh a {
		background-color: #fff;
		display: block;
		height: 3px;
		margin-top: -2px;
		position: relative;
		top: 50%;
		transition: all 0.3s cubic-bezier(.7, 0, 0.3, 1) 0s;
		-webkit-transition: all 0.3s cubic-bezier(.7, 0, 0.3, 1) 0s;
		-ms-transition: all 0.3s cubic-bezier(.7, 0, 0.3, 1) 0s;
		width: 100%;
	}
	.gh a:after,
	.gh a:before {
		background-color: #fff;
		content: "";
		display: block;
		height: 3px;
		left: 0;
		position: absolute;
		transition: all 0.3s cubic-bezier(.7, 0, 0.3, 1) 0s;
		-webkit-transition: all 0.3s cubic-bezier(.7, 0, 0.3, 1) 0s;
		-ms-transition: all 0.3s cubic-bezier(.7, 0, 0.3, 1) 0s;
		width: 100%;
	}
	.gh a:before {
		top: -10px;
	}
	.gh a:after {
		top: 10px;
	}
	.gh.selected {
		transform: rotate(90deg);
	}
	.gh.selected a {
		background-color: transparent !important;
	}
	.gh.selected a:before,
	.gh.selected a:after {
		top: 0;
	}
	.gh.selected a:before {
		transform: translateY(0px) rotate(-45deg);
		-webkit-transform: translateY(0px) rotate(-45deg);
		-ms-transform: translateY(0px) rotate(-45deg);
	}
	.gh.selected a:after {
		transform: translateY(0px) rotate(45deg);
		-webkit-transform: translateY(0px) rotate(45deg);
		-ms-transform: translateY(0px) rotate(45deg);
	}
	.active .gh a,
	.active .gh a:before,
	.active .gh a:after {
		background-color: #2aa75c;
	}
	.header .nav-links>li.active,
	.header.active .nav-links>li.active {
		background-color: #096c38;
	}
	.nav-links>li {
		border-top: none;
	}
	.m-footer {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: #fff;
		box-shadow: 0 4px 5px 5px rgba(204, 204, 204, 0.61);
		z-index: 100;
	}
	.m-footer>a {
		float: left;
		width: 20%;
		padding: 8px 0;
		text-align: center;
	}
	.m-footer>a>i {
		font-size: 1.75rem;
	}
	.m-footer>a.active,.m-footer>a.active>i{color: #c4191f;}
	.m-footer>a>h4 {
		margin-top: .6rem;
	}
	/*.section {
		margin-bottom: 60px;
	}*/
	.crumb {margin-top: 6rem;}
	.page {
		text-align: center;
	}

	.common-tab {
		height: auto;
	}
	.common-tab>div {
		display: block;
		width: 100%;
	}
	.common-tab>div>a {
		width: 33.333%;
	}
	.common-box {
		padding: 4.375rem 1rem;
	}
	.news-list>a>p {height: 10rem;}
}

